Service Bus (1 / 27): You are designing a notification system for a large organization using Azure Service Bus. The system must send updates to multiple subscribers whenever a new policy is published. Which feature of Azure Service Bus should you utilize to ensure that all subscribers receive the new policy notifications?
Answer:
Topics in Azure Service Bus are designed for one-to-many communication scenarios where a single message can be sent to multiple subscribers. Queues are used for point-to-point connections, Relay is for hybrid connections, and Event Hub is for event streaming. Therefore, Topics are the correct choice for this scenario.